From f13206ef5c74544bb0ebfbe7061f8f37862b5496 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 27 Mar 2009 18:34:03 +0000 Subject: [PATCH] (ls-lisp-insert-directory): Allow for a trailing '/' when looking for "." and "..". (Bug#2801) --- lisp/ls-lisp.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 0374b9bbaed..060e4011a4a 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -390,7 +390,10 @@ not contain `d', so that a full listing is expected." (setq elt (car file-alist) file-alist (cdr file-alist)) (when (and (eq (cadr elt) t) ; directory - (not (string-match "\\`\\.\\.?\\'" (car elt)))) + ;; Under -F, we have already decorated all + ;; directories, including "." and "..", with + ;; a /, so allow for that as well. + (not (string-match "\\`\\.\\.?/?\\'" (car elt)))) (setq elt (expand-file-name (car elt) dir)) (insert "\n" elt ":\n") (ls-lisp-insert-directory -- 2.30.2